home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 May: Tool Chest / Developer CD Series May 1996 (Tool Chest) (Apple Computer) (1996).iso / Tool Chest / Development Tools & Languages / Macintosh Common Lisp Related / User Contributions / Conquest 1.1.sea / Conquest 1.1 / PLAYERS / tai2-player / @load.lisp / @load.lisp
Encoding:
Text File  |  1993-02-16  |  572 b   |  27 lines  |  [TEXT/CCL2]

  1. ;;; @load.lisp
  2. ;;;
  3. ;;; CONQUEST AI PROJECT
  4. ;;;
  5. ;;; Washington University Computer Science Department
  6. ;;; Copyright 1992 Paul McCartney.  All Rights Reserved.
  7. ;;;
  8. ;;; AUTHOR: Terry A. Idol
  9. ;;;
  10. ;;; DESCRIPTION:
  11. ;;;
  12. ;;;
  13.  
  14. (defpackage :tai2
  15.   (:use :common-lisp :ccl :conquest))
  16.  
  17. (use-package '(:tai2) :conquest)
  18.  
  19. (def-logical-directory "tai2" (mac-directory-namestring *loading-file-source-file*))
  20.  
  21. (load-fasl "tai2;player-class.lisp")
  22. (load-fasl "tai2;select-country.lisp")
  23. (load-fasl "tai2;place-armies.lisp")
  24. (load-fasl "tai2;attack.lisp")
  25. (load-fasl "tai2;fortify.lisp")
  26.  
  27.